This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Archive database needs a new profile doc ~Hal Opkrobergli 28.Jan.03 08:09 PM a Web browser Notes Client 6.0Windows 98
For those like myself who are LotusScript challenged, here's what I did to remove the archive database profile document:
1. In the archive db, create a new agent.
2. The agent type should be LotusScript, and Bob's coding should be placed in the initialize section of the script as follows....
Sub Initialize
Dim db As New NotesDatabase( "", "archive\a_ksymme.nsf")
Dim prof As NotesDocument
Set prof = db.GetProfileDocument( "archive database profile" )
Call prof.Remove( True )
End Sub
3. Note that the NotesDatabase parameter needed a more complete path than what Bob posted, and of course, your actual archive file name will be different. Without the right path and file name, you'll get the "database ***.nsf has not been opened yet" error.
4. Save the agent and run it from the menu of the archive database.
5. Conduct your archiving as before. I didn't have to upgrade the mail template of my database nor it's archive to do this.
I think I'll hold off on rolling out R6 to other clients until the fix gets released.